home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr28 / netest.zip / NETEST.BAT < prev    next >
DOS Batch File  |  1993-06-03  |  1KB  |  46 lines

  1. @echo off
  2. cls
  3. echo NETEST v1.10 NE1000 Network Interface Card Test
  4. echo (c)1983, Pye Yeuder Computer, Inc.
  5. echo.
  6. echo.
  7. if exist tempfile goto remove
  8. REM You can edit the entries below as needed:
  9.           
  10. REM       ┌─────── NE1000 (vs. 2 for NE2000)
  11. REM       │ ┌───── IRQ
  12. REM       │ │  ┌── BASE ADDR  
  13. REM       ┴ ┴  ┴ 
  14. call nest 1 2 300
  15. if exist tempfile goto remove
  16. call nest 1 2 320
  17. if exist tempfile goto remove
  18. call nest 1 2 340
  19. if exist tempfile goto remove
  20. call nest 1 3 300
  21. if exist tempfile goto remove
  22. call nest 1 3 320
  23. if exist tempfile goto remove
  24. call nest 1 3 360
  25. if exist tempfile goto remove
  26. call nest 1 4 300
  27. if exist tempfile goto remove
  28. call nest 1 4 340
  29. if exist tempfile goto remove
  30. call nest 1 4 360
  31. if exist tempfile goto remove
  32. call nest 1 5 320
  33. if exist tempfile goto remove
  34. call nest 1 5 340
  35. if exist tempfile goto remove
  36. call nest 1 5 360
  37. if exist tempfile goto remove
  38. echo ------------------------------------
  39. echo ALL TESTS FAILED
  40. echo Change NIC settings and retest.
  41. echo.
  42. echo.
  43. goto end
  44. :remove
  45. if exist tempfile del tempfile
  46. :end